{"version":3,"file":"static/chunks/pages/slots/group/[group]-ea59b61e20605745.js","sources":["webpack://_N_E/./node_modules/copy-to-clipboard/index.js","webpack://_N_E/./server/config/access.config.js","webpack://_N_E/./src/common/components/seo/AnyJsonLd.tsx","webpack://_N_E/./src/common/components/seo/BreadcrumbDomainJsonLd.tsx","webpack://_N_E/./src/common/components/seo/SlotPageJsonLd.tsx","webpack://_N_E/./src/common/methods/getBreadcrumbs.ts","webpack://_N_E/./src/modules/slots/layouts/SlotGroup.layout.tsx","webpack://_N_E/./src/common/components/seo/SlotGroupPageJsonLd.tsx","webpack://_N_E/./src/pages/slots/group/[group]/index.tsx","webpack://_N_E/?95ea","webpack://_N_E/./node_modules/react-copy-to-clipboard/lib/Component.js","webpack://_N_E/./node_modules/react-copy-to-clipboard/lib/index.js","webpack://_N_E/./node_modules/rooks/dist/esm/hooks/useIsomorphicEffect.js","webpack://_N_E/./node_modules/rooks/dist/esm/hooks/useFreshTick.js","webpack://_N_E/./node_modules/rooks/dist/esm/hooks/useFreshRef.js","webpack://_N_E/./node_modules/rooks/dist/esm/hooks/useWindowEventListener.js","webpack://_N_E/./node_modules/rooks/dist/esm/hooks/useGlobalObjectEventListener.js","webpack://_N_E/./node_modules/toggle-selection/index.js","webpack://_N_E/./node_modules/next/dist/compiled/@babel/runtime/helpers/esm/toArray.js"],"sourceRoot":"","sourcesContent":["\"use strict\";\n\nvar deselectCurrent = require(\"toggle-selection\");\n\nvar clipboardToIE11Formatting = {\n \"text/plain\": \"Text\",\n \"text/html\": \"Url\",\n \"default\": \"Text\"\n}\n\nvar defaultMessage = \"Copy to clipboard: #{key}, Enter\";\n\nfunction format(message) {\n var copyKey = (/mac os x/i.test(navigator.userAgent) ? \"⌘\" : \"Ctrl\") + \"+C\";\n return message.replace(/#{\\s*key\\s*}/g, copyKey);\n}\n\nfunction copy(text, options) {\n var debug,\n message,\n reselectPrevious,\n range,\n selection,\n mark,\n success = false;\n if (!options) {\n options = {};\n }\n debug = options.debug || false;\n try {\n reselectPrevious = deselectCurrent();\n\n range = document.createRange();\n selection = document.getSelection();\n\n mark = document.createElement(\"span\");\n mark.textContent = text;\n // avoid screen readers from reading out loud the text\n mark.ariaHidden = \"true\"\n // reset user styles for span element\n mark.style.all = \"unset\";\n // prevents scrolling to the end of the page\n mark.style.position = \"fixed\";\n mark.style.top = 0;\n mark.style.clip = \"rect(0, 0, 0, 0)\";\n // used to preserve spaces and line breaks\n mark.style.whiteSpace = \"pre\";\n // do not inherit user-select (it may be `none`)\n mark.style.webkitUserSelect = \"text\";\n mark.style.MozUserSelect = \"text\";\n mark.style.msUserSelect = \"text\";\n mark.style.userSelect = \"text\";\n mark.addEventListener(\"copy\", function(e) {\n e.stopPropagation();\n if (options.format) {\n e.preventDefault();\n if (typeof e.clipboardData === \"undefined\") { // IE 11\n debug && console.warn(\"unable to use e.clipboardData\");\n debug && console.warn(\"trying IE specific stuff\");\n window.clipboardData.clearData();\n var format = clipboardToIE11Formatting[options.format] || clipboardToIE11Formatting[\"default\"]\n window.clipboardData.setData(format, text);\n } else { // all other browsers\n e.clipboardData.clearData();\n e.clipboardData.setData(options.format, text);\n }\n }\n if (options.onCopy) {\n e.preventDefault();\n options.onCopy(e.clipboardData);\n }\n });\n\n document.body.appendChild(mark);\n\n range.selectNodeContents(mark);\n selection.addRange(range);\n\n var successful = document.execCommand(\"copy\");\n if (!successful) {\n throw new Error(\"copy command was unsuccessful\");\n }\n success = true;\n } catch (err) {\n debug && console.error(\"unable to copy using execCommand: \", err);\n debug && console.warn(\"trying IE specific stuff\");\n try {\n window.clipboardData.setData(options.format || \"text\", text);\n options.onCopy && options.onCopy(window.clipboardData);\n success = true;\n } catch (err) {\n debug && console.error(\"unable to copy using clipboardData: \", err);\n debug && console.error(\"falling back to prompt\");\n message = format(\"message\" in options ? options.message : defaultMessage);\n window.prompt(message, text);\n }\n } finally {\n if (selection) {\n if (typeof selection.removeRange == \"function\") {\n selection.removeRange(range);\n } else {\n selection.removeAllRanges();\n }\n }\n\n if (mark) {\n document.body.removeChild(mark);\n }\n reselectPrevious();\n }\n\n return success;\n}\n\nmodule.exports = copy;\n","const LicenceBlocked = {\n\tUnitedStates: 'US',\n\tAustralia: 'AU',\n\tAustria: 'AT',\n\tComoros: 'KM',\n\tGermany: 'DE',\n\tSpain: 'ES',\n\tUnitedKingdom: 'GB',\n\tNetherlands: 'NL',\n\tFrance: 'FR',\n};\n\nconst BlockedCountries = {\n\tPoland: 'PL',\n\tCuracao: 'CW',\n\tSyria: 'SY',\n\tIran: 'IR',\n\tNorthKorea: 'KP',\n\tCuba: 'CU',\n\tVenezuela: 'VE',\n\tYemen: 'YE',\n\tIraq: 'IQ',\n\tSudan: 'SD',\n\tMyanmar: 'MM',\n};\n\nconst accessConfig = {\n\tblockRegister: [\n\t\tLicenceBlocked.UnitedStates,\n\t\tLicenceBlocked.Australia,\n\t\tLicenceBlocked.Austria,\n\t\tLicenceBlocked.Comoros,\n\t\tLicenceBlocked.Germany,\n\t\tLicenceBlocked.Spain,\n\t\tLicenceBlocked.UnitedKingdom,\n\t\tLicenceBlocked.Netherlands,\n\t\tLicenceBlocked.France,\n\t],\n\tblockPage: [\n\t\t...Object.keys(BlockedCountries).map((el) => BlockedCountries[el]),\n\t],\n\tenableCloudflareRules: false,\n};\n\nmodule.exports = {\n\taccessConfig,\n};\n","import { FC } from 'react';\nimport Head from 'next/head';\nimport { config } from '@legacyApp/client/config';\nimport { StructuredData } from '@legacyApp/types/default/StructuredData';\nimport { socialConfig } from '@server/config/social.config';\nimport { jsonToString } from '@common/methods/jsonToString';\n\ninterface Props extends StructuredData {\n\turl?: string;\n}\n\nexport interface AnyJsonLdProps {\n\tkeyOverride?: string;\n\tprops?: Props;\n}\n\nexport const parseUrlJsonLd = (uri?: string) =>\n\t`https://${config.domain}${uri ?? ''}`;\n\nexport const SAME_AS = Object.keys(socialConfig).map(\n\t(key) => socialConfig[key],\n);\n\nexport const AnyJsonLd: FC = ({ keyOverride, props }) => {\n\tconst url = parseUrlJsonLd(props.url);\n\tconst jslonld = {\n\t\t'@context': 'https://schema.org',\n\t\tname: config.appName,\n\t\turl,\n\t\tmainEntityOfPage: {\n\t\t\t'@type': 'WebPage',\n\t\t\t'@id': `${url}`,\n\t\t},\n\t\t...props,\n\t};\n\n\treturn (\n\t\t\n\t\t\t\n\t\t\n\t);\n};\n","import { BreadcrumbJsonLd } from 'next-seo';\nimport { ItemListElements } from 'next-seo/lib/jsonld/breadcrumb';\nimport { FC } from 'react';\n\nimport { parseUrlJsonLd } from '@common/components/seo/AnyJsonLd';\nimport { simpleTrans } from '@legacyApp/client/modules/translation/translationService';\nimport { BreadcrumbData } from '@common/methods/getBreadcrumbs';\nimport { checkIsTransProps } from '@legacyApp/client/modules/translation/checkIsTransProps';\n\nconst mapBreadcrumbToJsonLd = (item: BreadcrumbData): BreadcrumbData => ({\n\t...item,\n\tname: checkIsTransProps(item.name)\n\t\t? simpleTrans(\n\t\t\t\titem.name.label as string,\n\t\t\t\titem.name?.options,\n\t\t\t\titem.name?.namespace,\n\t\t )\n\t\t: item.name,\n\titem: parseUrlJsonLd(item.item),\n});\n\nexport const BreadcrumbDomainJsonLd: FC<{\n\titemListElements: BreadcrumbData[];\n}> = ({ itemListElements }) => (\n\t\n);\n","import { FC } from 'react';\n\nimport { accessConfig } from '@server/config/access.config';\nimport { config } from '@legacyApp/client/config';\nimport { parseImageSrc } from '@common/components/default/Image/Image';\nimport {\n\tAnyJsonLd,\n\tparseUrlJsonLd,\n\tSAME_AS,\n} from '@common/components/seo/AnyJsonLd';\nimport { getBreadcrumb } from '@common/methods/getBreadcrumbs';\nimport { BreadcrumbDomainJsonLd } from '@common/components/seo/BreadcrumbDomainJsonLd';\n\ninterface BreadcrumbListElementType {\n\tposition: number;\n\tname: string;\n\titem: string;\n}\n\nexport const SlotPageAnyJsonLd: FC<{ name: string; slug?: string }> = ({\n\tname,\n\tslug,\n}) => {\n\treturn (\n\t\t\n\t\t\t\t\tel.toLowerCase(),\n\t\t\t\t),\n\t\t\t\tpotentialAction: {\n\t\t\t\t\t'@type': 'Action',\n\t\t\t\t\tname: 'PlayAction',\n\t\t\t\t},\n\t\t\t\tpublisher: {\n\t\t\t\t\t'@type': 'Organization',\n\t\t\t\t\tname: config.appName,\n\t\t\t\t\tbrand: config.appName,\n\t\t\t\t\turl: parseUrlJsonLd(),\n\t\t\t\t\tlogo: parseImageSrc('/img/logo_black.png'),\n\t\t\t\t\tsameAs: SAME_AS,\n\t\t\t\t},\n\t\t\t}}\n\t\t/>\n\t);\n};\n\nexport const SlotPageJsonLd: FC<{\n\tname: string;\n\tslug?: string;\n\tbreadcrumbsElements?: BreadcrumbListElementType[];\n\tlocale?: string;\n}> = ({ name, slug, breadcrumbsElements, locale }) => {\n\tconst slugElement = [\n\t\tgetBreadcrumb({ locale, position: 2, name, pathname: `/slots/${slug}` }),\n\t];\n\n\treturn (\n\t\t<>\n\t\t\t\n\n\t\t\t\n\t\t\n\t);\n};\n","import { config } from '@legacyApp/client/config';\nimport { getPathLocalized } from '@common/methods/getPathLocalized/getPathLocalized';\nimport { TransProps } from '@legacyApp/client/modules/translation/translate';\n\nexport type BreadcrumbData = {\n\tlocale?: string;\n\tposition?: number;\n\tname?: string | TransProps;\n\tpathname?: string;\n\titem?: string;\n};\n\nexport const getBreadcrumb = ({\n\tlocale,\n\tposition = 1,\n\tname = config.appName,\n\tpathname = '/',\n}: BreadcrumbData) => ({\n\tposition,\n\tname,\n\titem: getPathLocalized({\n\t\tpathname,\n\t\tlocale,\n\t}),\n});\n\nexport const getBreadcrumbs = (locale: string, data: Array) => [\n\tgetBreadcrumb({ locale }),\n\t...data.map((el, index) =>\n\t\tgetBreadcrumb({\n\t\t\tlocale,\n\t\t\tposition: index + 2,\n\t\t\tname: el.name,\n\t\t\tpathname: el.pathname,\n\t\t}),\n\t),\n];\n","import React, { FC, useCallback, useEffect, useState } from 'react';\n\nimport { useGetDataArray } from '@legacyApp/hooks/fetch/useGetDataArray';\nimport { SectionsTabNav } from '@common/components/home/SectionsTabNav/SectionsTabNav';\nimport { Loader } from '@legacyApp/client/components/loader/loader';\nimport {\n\tSORT_OPTION,\n\tStyledHeaderFilters,\n\tStyledHeaderTitleContainer,\n\tStyledSectionHeader,\n\tStyledSlotContainer,\n} from '@modules/slots/layouts/SlotCategory.layout';\nimport { TransSlots } from '@legacyApp/client/modules/translation/translate';\nimport { SlotGroupPromoBanner } from '@modules/slots/components/SlotsGroupPromoBanner/SlotGroupPromoBanner';\nimport { useFetchGames } from '../hooks/useFetchGames';\nimport { StyledListWrapper } from '../components/ListWrapper.styled';\nimport { ProvidersSection } from '../components/ProvidersSection';\nimport { Slot, SlotGroupDTO } from '../store/slots.types';\nimport { TileSlotsGrid } from '../components/TileSlotsGrid';\nimport { NoGames } from '../components/NoGames';\nimport { SlotsFilters } from '../components/SlotsFilters';\nimport { ShowMore } from '../components/ShowMore';\nimport {\n\tDEFAULT_GAMES_PAGE,\n\tGAMES_ON_PAGE,\n} from '../constants/SlotMenu.constants';\nimport { SlotsBreadcrumbs } from '../components/SlotsBreadcrumbs';\n\nexport const SlotGroupLayout: FC<{ group: SlotGroupDTO }> = ({ group }) => {\n\tconst groupSlug = group?.slug;\n\tconst groupName = group?.name;\n\n\tconst [filterSort, setFilterSort] = useState(SORT_OPTION[0]);\n\tconst [gamesCount, setGamesCount] = useState(GAMES_ON_PAGE);\n\tconst memoizedSetGamesCount = useCallback(\n\t\t(count) => setGamesCount(count),\n\t\t[],\n\t);\n\tconst [gamesPage, setGamesPage] = useState(DEFAULT_GAMES_PAGE);\n\tconst [dataKey, setDataKey] = useState('');\n\n\tconst { callback } = useFetchGames();\n\n\tconst gamesCallback = useCallback(\n\t\t() =>\n\t\t\tcallback({\n\t\t\t\tcount: gamesCount,\n\t\t\t\tpage: gamesPage,\n\t\t\t\tgroup: !groupSlug ? null : groupSlug,\n\t\t\t\t...(filterSort.value && { orderBy: filterSort.value }),\n\t\t\t}),\n\t\t[gamesCount, callback, groupSlug, filterSort.value, gamesPage],\n\t);\n\n\tconst {\n\t\tdata: list,\n\t\tloaded,\n\t\tcount,\n\t\tloading,\n\t} = useGetDataArray(`${dataKey}${gamesPage}`, gamesCallback);\n\n\tconst showMoreHandler = () => {\n\t\tsetGamesPage((prevGamesPage) => prevGamesPage + 1);\n\t};\n\n\tconst setFilterSortHandler = (sort) => {\n\t\tsetFilterSort(sort);\n\t};\n\n\tuseEffect(() => {\n\t\tconst dataKey_ = `group,${groupSlug},${gamesCount},${filterSort.value}`;\n\t\tif (dataKey_ !== dataKey) {\n\t\t\tsetGamesPage(DEFAULT_GAMES_PAGE);\n\t\t\tsetDataKey(dataKey_);\n\t\t}\n\t}, [groupSlug, groupName, dataKey, filterSort.value, gamesCount]);\n\n\treturn (\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t}\n\t\t\t\t\t/>\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\n\t\t\t\n\t\t\t\t\n\t\t\t\t{list?.length === 0 && loaded && !loading && }\n\t\t\t\t\n\t\t\t\t{!!loaded && list.length > 0 && (\n\t\t\t\t\t\n\t\t\t\t)}\n\t\t\t\n\t\t\t\n\t\t\n\t);\n};\n","import { FC } from 'react';\n\nimport { SlotPageAnyJsonLd } from '@common/components/seo/SlotPageJsonLd';\nimport { getBreadcrumbs } from '@common/methods/getBreadcrumbs';\nimport { BreadcrumbDomainJsonLd } from '@common/components/seo/BreadcrumbDomainJsonLd';\nimport { TransNamespace } from '@legacyApp/client/modules/translation/TransNamespace';\n\nexport const SlotGroupPageJsonLd: FC<{\n\tname: string;\n\tslug?: string;\n\tlocale?: string;\n}> = ({ name, slug, locale }) => (\n\t<>\n\t\t\n\n\t\t\n\t\n);\n","import React from 'react';\n\nimport { pageEnhancer } from '@common/hoc/pageEnhancer';\nimport { getStaticPathsWrapper } from '@legacyApp/methods/getStaticPaths/getStaticPaths';\nimport { handleGetStaticProps } from '@legacyApp/methods/router/handleGetStaticProps';\nimport { DEFAULT_NAMESPACE } from '@legacyApp/client/modules/translation/translate.constants';\nimport { simpleTrans } from '@legacyApp/client/modules/translation/translationService';\nimport { TransNamespace } from '@legacyApp/client/modules/translation/TransNamespace';\nimport { SLOTS_PAGE_ID } from '@modules/slots/constants/slots.page.config';\nimport Seo from '@common/components/default/Seo/Seo';\nimport { MainLayout } from '@legacyApp/client/components/mainLayout';\nimport { getGroupPageData } from '@modules/cmsHandler/methods/getGroupPageData';\nimport { SlotGroupLayout } from '@modules/slots/layouts/SlotGroup.layout';\nimport { getPathLocalized } from '@common/methods/getPathLocalized/getPathLocalized';\nimport { SlotGroupPageJsonLd } from '@common/components/seo/SlotGroupPageJsonLd';\n\nconst PAGE_ID = SLOTS_PAGE_ID.GROUP;\n\nexport async function getStaticProps(props) {\n\tconst { page_content, slug, name } = await getGroupPageData(\n\t\tprops.params.group,\n\t\tprops.locale,\n\t);\n\n\tif (!slug) {\n\t\treturn {\n\t\t\tredirect: {\n\t\t\t\tdestination: getPathLocalized({\n\t\t\t\t\tpathname: '/slots/slot-games',\n\t\t\t\t\tlocale: props.locale,\n\t\t\t\t}),\n\t\t\t\tstatusCode: 301,\n\t\t\t},\n\t\t};\n\t}\n\n\tconst noIndex = false;\n\n\treturn await handleGetStaticProps(\n\t\t{\n\t\t\tlocale: props.locale,\n\t\t\tparams: {\n\t\t\t\t...props.params,\n\t\t\t\tgroupData: {\n\t\t\t\t\tslug: slug || null,\n\t\t\t\t\tname: name || null,\n\t\t\t\t},\n\t\t\t\tnoIndex,\n\t\t\t\tpage_content,\n\t\t\t},\n\t\t},\n\t\t[DEFAULT_NAMESPACE, TransNamespace.SLOTS],\n\t\ttrue,\n\t);\n}\n\nexport async function getStaticPaths(params) {\n\treturn getStaticPathsWrapper(params);\n}\n\nconst SlotsGroup = (context) => {\n\tconst { params, locale } = context;\n\tconst { groupData } = params;\n\n\treturn (\n\t\t<>\n\t\t\t\n\n\t\t\t\n\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t);\n};\n\nexport default pageEnhancer(SlotsGroup, {\n\tid: PAGE_ID,\n\tnoSeo: true,\n});\n","\n (window.__NEXT_P = window.__NEXT_P || []).push([\n \"/slots/group/[group]\",\n function () {\n return require(\"private-next-pages/slots/group/[group]/index.tsx\");\n }\n ]);\n if(module.hot) {\n module.hot.dispose(function () {\n window.__NEXT_P.push([\"/slots/group/[group]\"])\n });\n }\n ","\"use strict\";\n\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && \"function\" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }, _typeof(obj); }\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.CopyToClipboard = void 0;\n\nvar _react = _interopRequireDefault(require(\"react\"));\n\nvar _copyToClipboard = _interopRequireDefault(require(\"copy-to-clipboard\"));\n\nvar _excluded = [\"text\", \"onCopy\", \"options\", \"children\"];\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { \"default\": obj }; }\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, \"prototype\", { writable: false }); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, \"prototype\", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } else if (call !== void 0) { throw new TypeError(\"Derived constructors may only return object or undefined\"); } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nvar CopyToClipboard = /*#__PURE__*/function (_React$PureComponent) {\n _inherits(CopyToClipboard, _React$PureComponent);\n\n var _super = _createSuper(CopyToClipboard);\n\n function CopyToClipboard() {\n var _this;\n\n _classCallCheck(this, CopyToClipboard);\n\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n _this = _super.call.apply(_super, [this].concat(args));\n\n _defineProperty(_assertThisInitialized(_this), \"onClick\", function (event) {\n var _this$props = _this.props,\n text = _this$props.text,\n onCopy = _this$props.onCopy,\n children = _this$props.children,\n options = _this$props.options;\n\n var elem = _react[\"default\"].Children.only(children);\n\n var result = (0, _copyToClipboard[\"default\"])(text, options);\n\n if (onCopy) {\n onCopy(text, result);\n } // Bypass onClick if it was present\n\n\n if (elem && elem.props && typeof elem.props.onClick === 'function') {\n elem.props.onClick(event);\n }\n });\n\n return _this;\n }\n\n _createClass(CopyToClipboard, [{\n key: \"render\",\n value: function render() {\n var _this$props2 = this.props,\n _text = _this$props2.text,\n _onCopy = _this$props2.onCopy,\n _options = _this$props2.options,\n children = _this$props2.children,\n props = _objectWithoutProperties(_this$props2, _excluded);\n\n var elem = _react[\"default\"].Children.only(children);\n\n return /*#__PURE__*/_react[\"default\"].cloneElement(elem, _objectSpread(_objectSpread({}, props), {}, {\n onClick: this.onClick\n }));\n }\n }]);\n\n return CopyToClipboard;\n}(_react[\"default\"].PureComponent);\n\nexports.CopyToClipboard = CopyToClipboard;\n\n_defineProperty(CopyToClipboard, \"defaultProps\", {\n onCopy: undefined,\n options: undefined\n});","\"use strict\";\n\nvar _require = require('./Component'),\n CopyToClipboard = _require.CopyToClipboard;\n\nCopyToClipboard.CopyToClipboard = CopyToClipboard;\nmodule.exports = CopyToClipboard;","import { useEffect, useLayoutEffect } from 'react';\n/**\n * useIsomorphicEffect\n * Resolves to useEffect when \"window\" is not in scope and useLayout effect in the browser\n *\n * @param {Function} callback Callback function to be called on mount\n */\nvar useIsomorphicEffect = typeof window === 'undefined' ? useEffect : useLayoutEffect;\nexport { useIsomorphicEffect };\n","import { useFreshRef } from \"./useFreshRef\";\nfunction useFreshTick(callback) {\n var freshRef = useFreshRef(callback);\n function tick() {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n if (typeof freshRef.current === \"function\") {\n freshRef.current.apply(freshRef, args);\n }\n }\n return tick;\n}\nexport { useFreshTick };\n","import { useEffect, useRef } from \"react\";\nimport { useIsomorphicEffect } from \"./useIsomorphicEffect\";\n/**\n * useFreshRef\n *\n * @param value The value which needs to be fresh at all times. Probably\n * best used with functions\n * @param preferLayoutEffect Should the value be updated using a layout effect\n * or a passive effect. Defaults to false.\n * @returns A ref containing the fresh value\n */\nfunction useFreshRef(value, preferLayoutEffect) {\n if (preferLayoutEffect === void 0) { preferLayoutEffect = false; }\n var useEffectToUse = preferLayoutEffect ? useIsomorphicEffect : useEffect;\n var ref = useRef(value);\n useEffectToUse(function () {\n ref.current = value;\n });\n return ref;\n}\nexport { useFreshRef };\n","import { useGlobalObjectEventListener } from \"./useGlobalObjectEventListener\";\n/**\n * useWindowEventListener hook\n *\n * A react hook to an event listener to the window\n *\n * @param {string} eventName The event to track\n * @param {Function} callback The callback to be called on event\n * @param {ListenerOptions} listenerOptions The options to be passed to the event listener\n * @param {boolean} isLayoutEffect Should it use layout effect. Defaults to false\n * @returns {undefined}\n */\nfunction useWindowEventListener(eventName, callback, listenerOptions, isLayoutEffect) {\n if (listenerOptions === void 0) { listenerOptions = {}; }\n if (isLayoutEffect === void 0) { isLayoutEffect = false; }\n useGlobalObjectEventListener(window, eventName, callback, listenerOptions, true, isLayoutEffect);\n}\nexport { useWindowEventListener };\n","import { useEffect } from \"react\";\nimport { useFreshTick } from \"./useFreshTick\";\nimport { useIsomorphicEffect } from \"./useIsomorphicEffect\";\nimport { warning } from \"./warning\";\n/**\n * useGlobalObjectEventListener hook\n *\n * A react hook to an event listener to a global object\n *\n * @param {Window|Document} globalObject The global object to add event onto\n * @param {string} eventName The event to track\n * @param {Function} callback The callback to be called on event\n * @param {ListenerOptions} listenerOptions The options to be passed to the event listener\n * @param {boolean} when Should the event listener be active\n * @param {boolean} isLayoutEffect Should it use layout effect. Defaults to false\n * @returns {undefined}\n */\nfunction useGlobalObjectEventListener(globalObject, eventName, callback, listenerOptions, when, isLayoutEffect) {\n if (listenerOptions === void 0) { listenerOptions = {}; }\n if (when === void 0) { when = true; }\n if (isLayoutEffect === void 0) { isLayoutEffect = false; }\n var freshCallback = useFreshTick(callback);\n var useEffectToRun = isLayoutEffect ? useIsomorphicEffect : useEffect;\n useEffectToRun(function () {\n warning(typeof globalObject !== \"undefined\", \"[useGlobalObjectEventListener]: Cannot attach event handlers to undefined.\");\n if (typeof globalObject !== \"undefined\" && when) {\n globalObject.addEventListener(eventName, freshCallback, listenerOptions);\n return function () {\n globalObject.removeEventListener(eventName, freshCallback, listenerOptions);\n };\n }\n return function () { };\n }, [eventName, listenerOptions]);\n}\nexport { useGlobalObjectEventListener };\n","\nmodule.exports = function () {\n var selection = document.getSelection();\n if (!selection.rangeCount) {\n return function () {};\n }\n var active = document.activeElement;\n\n var ranges = [];\n for (var i = 0; i < selection.rangeCount; i++) {\n ranges.push(selection.getRangeAt(i));\n }\n\n switch (active.tagName.toUpperCase()) { // .toUpperCase handles XHTML\n case 'INPUT':\n case 'TEXTAREA':\n active.blur();\n break;\n\n default:\n active = null;\n break;\n }\n\n selection.removeAllRanges();\n return function () {\n selection.type === 'Caret' &&\n selection.removeAllRanges();\n\n if (!selection.rangeCount) {\n ranges.forEach(function(range) {\n selection.addRange(range);\n });\n }\n\n active &&\n active.focus();\n };\n};\n","import arrayWithHoles from \"./arrayWithHoles.js\";\nimport iterableToArray from \"./iterableToArray.js\";\nimport unsupportedIterableToArray from \"./unsupportedIterableToArray.js\";\nimport nonIterableRest from \"./nonIterableRest.js\";\nexport default function _toArray(arr) {\n return arrayWithHoles(arr) || iterableToArray(arr) || unsupportedIterableToArray(arr) || nonIterableRest();\n}"],"names":["deselectCurrent","clipboardToIE11Formatting","module","exports","text","options","debug","message","reselectPrevious","range","selection","mark","success","document","createRange","getSelection","createElement","textContent","ariaHidden","style","all","position","top","clip","whiteSpace","webkitUserSelect","MozUserSelect","msUserSelect","userSelect","addEventListener","e","stopPropagation","format","preventDefault","clipboardData","console","warn","window","clearData","setData","onCopy","body","appendChild","selectNodeContents","addRange","execCommand","Error","err","error","copyKey","test","navigator","userAgent","replace","prompt","removeRange","removeAllRanges","removeChild","BlockedCountries","Poland","Curacao","Syria","Iran","NorthKorea","Cuba","Venezuela","Yemen","Iraq","Sudan","Myanmar","accessConfig","blockRegister","blockPage","Object","keys","map","el","enableCloudflareRules","parseUrlJsonLd","uri","config","SAME_AS","socialConfig","key","AnyJsonLd","keyOverride","props","url","jslonld","name","mainEntityOfPage","type","dangerouslySetInnerHTML","__html","jsonToString","mapBreadcrumbToJsonLd","item","checkIsTransProps","simpleTrans","label","namespace","BreadcrumbDomainJsonLd","itemListElements","SlotPageAnyJsonLd","slug","applicationCategory","operatingSystem","browserRequirements","countriesNotSupported","toLowerCase","potentialAction","publisher","brand","logo","parseImageSrc","sameAs","SlotPageJsonLd","breadcrumbsElements","locale","slugElement","getBreadcrumb","pathname","getPathLocalized","getBreadcrumbs","data","index","SlotGroupLayout","group","groupSlug","groupName","useState","SORT_OPTION","filterSort","setFilterSort","GAMES_ON_PAGE","gamesCount","setGamesCount","memoizedSetGamesCount","useCallback","count","DEFAULT_GAMES_PAGE","gamesPage","setGamesPage","dataKey","setDataKey","callback","useFetchGames","gamesCallback","page","value","orderBy","useGetDataArray","list","loaded","loading","useEffect","dataKey_","SlotGroupPromoBanner","enableDetails","SectionsTabNav","activeTabId","SlotsBreadcrumbs","showGroup","title","SlotsFilters","sort","active","length","NoGames","TileSlotsGrid","items","ShowMore","displayingGames","allGames","showMore","prevGamesPage","ProvidersSection","SlotGroupPageJsonLd","TransNamespace","PAGE_ID","SLOTS_PAGE_ID","pageEnhancer","context","params","groupData","Seo","titleProps","section_name","undefined","noindex","noIndex","nofollow","pageParams","v2","id","noSeo","__NEXT_P","push","_typeof","obj","Symbol","iterator","constructor","prototype","defineProperty","CopyToClipboard","_react","_interopRequireDefault","_copyToClipboard","_excluded","__esModule","ownKeys","object","enumerableOnly","getOwnPropertySymbols","symbols","filter","sym","getOwnPropertyDescriptor","enumerable","apply","_objectSpread","target","i","arguments","source","forEach","_defineProperty","getOwnPropertyDescriptors","defineProperties","_objectWithoutProperties","excluded","sourceKeys","indexOf","_objectWithoutPropertiesLoose","sourceSymbolKeys","propertyIsEnumerable","call","_classCallCheck","instance","Constructor","TypeError","_defineProperties","descriptor","configurable","writable","_setPrototypeOf","o","p","setPrototypeOf","__proto__","_createSuper","Derived","hasNativeReflectConstruct","Reflect","construct","sham","Proxy","Boolean","valueOf","_isNativeReflectConstruct","result","Super","_getPrototypeOf","NewTarget","this","_possibleConstructorReturn","self","_assertThisInitialized","ReferenceError","getPrototypeOf","_React$PureComponent","subClass","superClass","create","_inherits","protoProps","staticProps","_super","_this","_len","args","Array","_key","concat","event","_this$props","children","elem","Children","only","onClick","_this$props2","cloneElement","PureComponent","useIsomorphicEffect","useLayoutEffect","useFreshTick","freshRef","preferLayoutEffect","useEffectToUse","ref","useRef","current","useFreshRef","_i","useWindowEventListener","eventName","listenerOptions","isLayoutEffect","globalObject","when","freshCallback","warning","removeEventListener","useGlobalObjectEventListener","rangeCount","activeElement","ranges","getRangeAt","tagName","toUpperCase","blur","focus","_toArray","arr"],"mappings":"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","debug_id":"d69b0482-2b9f-5406-b7f2-c8384cb861ea"}